home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / GNU_KIT / DISK9.ZIP / src / mint110 / cookie.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-16  |  297 b   |  21 lines

  1. /* header file for dealing with the cookie jar */
  2.  
  3. #ifndef _COOKIE_H
  4. #define _COOKIE_H
  5.  
  6. union clong {
  7.     char    aschar[4];
  8.     long    aslong;
  9. };
  10.  
  11. struct cookie {
  12.     union clong tag;
  13.     long value;
  14. };
  15.  
  16. typedef struct cookie COOKIE;
  17.  
  18. #define CJAR    ((COOKIE **) 0x5a0L)
  19.  
  20. #endif /* _COOKIE_H */
  21.